home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / bgui12.lha / include / clib / bgui_protos.h
C/C++ Source or Header  |  1994-05-09  |  971b  |  30 lines

  1. #ifndef CLIB_BGUI_PROTOS_H
  2. #define CLIB_BGUI_PROTOS_H
  3. /*
  4. **      $VER: clib/bgui_protos.h 37.1 (12.10.93)
  5. **      bgui.library prototypes. For use with 32 bit integers only.
  6. **
  7. **
  8. **      (C) Copyright 1993-1994 Jaba Development.
  9. **      (C) Copyright 1993-1994 Jan van den Baard.
  10. **          All Rights Reserved.
  11. **/
  12.  
  13. #ifndef LIBRARIES_BGUI_H
  14. #include <libraries/bgui.h>
  15. #endif
  16.  
  17. Class *BGUI_GetClassPtr( ULONG );
  18. Object *BGUI_NewObjectA( ULONG, struct TagItem * );
  19. ULONG BGUI_RequestA( struct Window *, struct bguiRequest *, ULONG * );
  20. BOOL BGUI_Help( struct Window *, UBYTE *, UBYTE *, ULONG );
  21. APTR BGUI_LockWindow( struct Window * );
  22. VOID BGUI_UnlockWindow( APTR );
  23. ULONG BGUI_DoGadgetMethodA( Object *, struct Window *, struct Requester *, Msg );
  24.  
  25. /* varargs */
  26. Object *BGUI_NewObject( ULONG, Tag, ... );
  27. ULONG BGUI_Request( struct Window *, struct bguiRequest *, ... );
  28. ULONG BGUI_DoGadgetMethod( Object *, struct Window *, struct Requester *, ULONG, ... );
  29. #endif
  30.